home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
utilit~1
/
groffvar.zoo
/
source
/
gendef.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-03-05
|
273 b
|
26 lines
# gendef filename var=val var=val
file=$1
shift
#defs="#define $1"
#shift
defs=""
for def
do
defs="$defs
#define $def"
done
t=/tmp/groff.$$
sed -e 's/=/ /' >$t <<EOF
$defs
EOF
test -r $file && cmp -s $t $file || cp $t $file
rm -f $t
exit 0